home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Games / Pentominoes 2.0 / Shell ƒ / edit functions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-15  |  378 b   |  19 lines  |  [TEXT/MMCC]

  1. #ifndef __MY_EDIT_FUNCTIONS_H__
  2. #define __MY_EDIT_FUNCTIONS_H__
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. extern    void GenericCut(WindowRef theWindow);
  9. extern    void GenericCopy(WindowRef theWindow);
  10. extern    void GenericPaste(WindowRef theWindow);
  11. extern    void GenericClear(WindowRef theWindow);
  12. extern    void GenericSelectAll(WindowRef theWindow);
  13.  
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17.  
  18. #endif
  19.